home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / Extension Shell 1.3 / Extension Shell 1.3 (Source) / Extension Shell #includes / AddrsTable.h next >
Encoding:
C/C++ Source or Header  |  1994-04-06  |  861 b   |  34 lines  |  [TEXT/R*ch]

  1. /*    NAME:
  2.         AddrsTable.h
  3.  
  4.     WRITTEN BY:
  5.         Dair Grant
  6.                  
  7.     DESCRIPTION:
  8.         Header file for AddrsTable.c. Contains the definition of a standard
  9.         AddressTable for use with Extension Shell.
  10.  
  11.     ___________________________________________________________________________
  12. */
  13. #ifndef __ADDRSTABLE__
  14. #define __ADDRSTABLE__
  15. //=============================================================================
  16. //        Include files                                                                 
  17. //-----------------------------------------------------------------------------
  18. #include "ESConstants.h"
  19.  
  20.  
  21.  
  22.  
  23.  
  24. //=============================================================================
  25. //        Structures                                                                 
  26. //-----------------------------------------------------------------------------
  27. // An AddressTable is an array of ProcPtrs.
  28. typedef struct {
  29.     ProcPtr            theTable[kMaxNumCodeResources+1];
  30. } AddressTable;
  31.  
  32.  
  33. #endif
  34.